home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////
- // ObjectEditor
- // by Charles Lloyd
- ////////////////////////
-
-
- //////////////////////////
- // User Settable Items
- //////////////////////////
- persistent id localKeyArray;
- persistent id localLabelArray;
- persistent id localObject;
-
- //////////////////////
- // Internal State
- //////////////////////
- persistent id isEditable;
- persistent id editableString;
-
- persistent id cellPadding;
-
- - awake
- {
- if (!localObject) {
- localKeyArray = @(
- "Title",
- "First_Name",
- "Last_Name",
- "Street",
- "City",
- "State",
- "Zip"
- );
- localObject = @{
- "Title" = "Mr";
- "First_Name" = "Joseph";
- "Last_Name" = "Bleaux";
- "Street" = "123 Maple";
- "City" = "Reno";
- "State" = "NV";
- "Zip" = "89444";
- };
- localObject = [[localObject mutableCopy] autorelease];
- localLabelArray = localKeyArray;
- isEditable = NO;
- [self toggleEditable];
- }
- }
-
- - processForm
- {
- return self;
- }
-
- - toggleEditable
- {
- if (isEditable == YES) {
- isEditable = NO;
- editableString = @"Make Editable";
- cellPadding = 4;
- } else {
- isEditable = YES;
- editableString = @"Make Read Only";
- cellPadding = 0;
- }
- }
-